<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

body{ margin:0px; padding:0px; border:0px; font-family:"Helvetica Neue",Helvetica,Arial,"Microsoft Yahei","Hiragino Sans GB","Heiti SC","WenQuanYi Micro Hei"; color:#555555; font-size:14px; width:100%; background:#ffffff;}
a{ margin:0px; padding:0px; border:0px; text-decoration:none; color:#555555; font-size:13px;}
a:hover{ text-decoration:none;}
*{ padding:0px; margin:0px; border:0px; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box; }
/* background:rgba(0,0,0,0);filter:progid:DXImageTransform.Microsoft.gradient(startcolorstr=#7F000000,endcolorstr=#7F000000);*/
li{ list-style:none;}
.clear{ clear:both !important; height:0px !important; width:0px !important; float:none !important; margin:0px !important; padding:0px !important; border:0px !important; line-height:0 !important; position:relative !important; }
input:focus{ outline: none;}/*去除按钮选中的高亮标签*/
textarea:focus{ outline: none;}/*去除文本框选中的高亮标签*/
button:focus{ outline: none;}/*去除按钮选中的高亮标签*/
select:focus{ outline: none;}/*去除下拉框选中的高亮标签*/
img{ vertical-align: middle;}
div,p,table,td,ul,li,span,a,ol,input,label{ padding:0px; margin:0px; border:0px;}
input::-ms-input-placeholder{ /* Internet Explorer 10+ */ color:#4d4d4d; font-size:12px;}
input::-webkit-input-placeholder{ /* WebKit browsers */ color:#4d4d4d; font-size:12px;}
input::-moz-placeholder{ /* Mozilla Firefox 4 to 18 */  color:#4d4d4d; font-size:12px;}
input::-moz-placeholder{ /* Mozilla Firefox 19+ */ color:#4d4d4d; font-size:12px;}
input::-moz-placeholder{ /* Mozilla Firefox 19+ */ color:#4d4d4d; font-size:12px;}
textarea::-webkit-input-placeholder{color:#4d4d4d; font-size:12px;}
.fl{ float:left;}
.fr{ float:right;}
/*下面是滚动条样式*/
    ::-webkit-scrollbar-track {
		  background-color: none;
	} /* 滚动条的滑轨背景颜色 */

	::-webkit-scrollbar-thumb {
		  background:#c0c0c0; 
	} /* 滑块颜色 */

	::-webkit-scrollbar-button {
		  background-color: none;
	} /* 滑轨两头的监听按钮颜色 */

	::-webkit-scrollbar-corner {
		  background: none;
	} /* 横向滚动条和纵向滚动条相交处尖角的颜色 */
    ::-webkit-scrollbar {
    width: 13px;
    height: 5px;
} /* 这是针对缺省样式 (必须的)

/*渐变*/
.jianbian{
    height: 200px;
    background: -webkit-linear-gradient(blue, yellow); /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(blue, yellow); /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(blue, yellow); /* Firefox 3.6 - 15 */
    background: linear-gradient(circle, red, yellow); /* 标准的语法（必须放在最后） */
}
/*渐变从左向右*/
.jianbian2{
    height: 200px;
    background: -webkit-linear-gradient(to right,blue, yellow); /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(to right,blue, yellow); /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(to right,blue, yellow); /* Firefox 3.6 - 15 */
    background: linear-gradient(to bottom,white, yellow); /* 标准的语法（必须放在最后） */
}

/*黑白照片*/
.gray { 
-webkit-filter: grayscale(100%); 
   -moz-filter: grayscale(100%); 
    -ms-filter: grayscale(100%); 
     -o-filter: grayscale(100%); 
        filter: grayscale(100%); 
        filter: gray; 
}

.gray:hover { 
-webkit-filter: grayscale(0%); 
   -moz-filter: grayscale(0%); 
    -ms-filter: grayscale(0%); 
     -o-filter: grayscale(0%); 
        filter: grayscale(0%); 
        filter: gray; 
}
/*圆角5px*/
.radius5{ 
-webkit-border-radius:5px; 
   -moz-border-radius:5px; 
    -ms-border-radius:5px; 
     -o-border-radius:5px; 
        border-radius:5px; 
}
/*圆角10px*/
.radius10{ 
-webkit-border-radius:10px; 
   -moz-border-radius:10px; 
    -ms-border-radius:10px; 
     -o-border-radius:10px; 
        border-radius:10px; 
}
/*图片变大*/
.tra{
-webkit-transform: scale(1);
   -moz-transform: scale(1);
    -ms-transform: scale(1);
     -o-transform: scale(1);
           filter: scale(1);
           filter: transform;
       transition: all 0.5s ease 0s;
-webkit-transform: all 0.5s ease 0s; 
	cursor:pointer;
	
}
.tra:hover{
-webkit-transform: scale(1.15);
   -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
     -o-transform: scale(1.15);
           filter: scale(1.15);
           filter: transform;
       transition: all 0.5s ease 0s;
-webkit-transform: all 0.5s ease 0s; 
	cursor:pointer;
	
}
/*透明度50%*/
.opacity5{ filter:alpha(opacity=50);-moz-opacity:0.5; -khtml-opacity:0.5;opacity: 0.5;}


/*投影*/
.shadow5{ 
-webkit-box-shadow:rgba(0,0,0,0.13) 5px 5px 5px; 
   -moz-box-shadow:rgba(0,0,0,0.13) 5px 5px 5px; 
    -ms-box-shadow:rgba(0,0,0,0.13) 5px 5px 5px; 
     -o-box-shadow:rgba(0,0,0,0.13) 5px 5px 5px; 
        box-shadow:rgba(0,0,0,0.13) 5px 5px 5px; 
		transition: all 0.5s ease 0s;
-webkit-transform: all 0.5s ease 0s; 
}

/*投影*/
.shadow10{ 
-webkit-box-shadow:rgba(0,0,0,0.13) 5px 5px 10px; 
   -moz-box-shadow:rgba(0,0,0,0.13) 5px 5px 10px; 
    -ms-box-shadow:rgba(0,0,0,0.13) 5px 5px 10px; 
     -o-box-shadow:rgba(0,0,0,0.13) 5px 5px 10px; 
        box-shadow:rgba(0,0,0,0.13) 5px 5px 10px; 
}

.shadow11{ 
-webkit-box-shadow:rgba(0,0,0,0.33) 0px 0px 15px; 
   -moz-box-shadow:rgba(0,0,0,0.33) 0px 0px 15px; 
    -ms-box-shadow:rgba(0,0,0,0.33) 0px 0px 15px; 
     -o-box-shadow:rgba(0,0,0,0.33) 0px 0px 15px; 
        box-shadow:rgba(0,0,0,0.33) 0px 0px 15px; 
}

/*图片居中*/
.chuizhi{
	display:-webkit-box;
	 display:-webkit-flex;
	 display:-moz-box;
	 display:-moz-flex;
	display:-ms-flexbox;
	display:flex;
	/* 水平居中*/ 
		   -webkit-box-align:center;
			  -moz-box-align:center;
			   -ms-flex-pack:center;
	 /* IE 10 */
	 -webkit-justify-content:center; 
		-moz-justify-content:center;
			 justify-content:center;
	/* IE 11+,Firefox 22+,Chrome 29+,Opera 12.1*/
	/* 垂直居中 */ 
			-webkit-box-pack:center;
			  -ms-flex-align:center;
			   -moz-box-pack:center;
	/* IE 10 */
		 -webkit-align-items:center;
			-moz-align-items:center;
				 align-items:center;	
}

/*图片翻转*/
.flip{
	-webkit-transform: rotate(0deg);
       -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
         -o-transform: rotate(0deg);
            transform: rotate(0deg);
           transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
	cursor:pointer;
 }
.flip:hover{
	-webkit-transform: rotate(360deg);
       -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
         -o-transform: rotate(360deg);
            transform: rotate(360deg);
           transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;  
	cursor:pointer;
}
.fenye_nei b{
    display: inline-block;
    padding: 0 13px;
    height: 34px;
    text-align: center;
    line-height: 34px;
    margin: 0 3px;
    border-radius: 5px;
    border: #dddddd solid 0px;
    overflow: hidden;
    font-size: 13px;
    color: #fff;
	background:#1c52a1;}
#wenhua{ padding-top:0px;}
.product1_nei_top{ border-bottom:1px dashed #dcdcdc}
.product8_nei_top{ border-bottom:0px !important}

.top{ width:100%; height:12px; background:#1c52a1; position:relative}
.top2{ width:100%; background:#333; line-height:80px; position:absolute; z-index:10}
.nei_top2{ background:#1c52a1; margin-bottom:107px}
.top2 .top2_nei{ max-width:1350px; margin:0 auto}
.top2 .top2_daohang{ padding-left:120px; position:relative}
.top2 .top2_daohang .top2_daohang_nei .daohang_nei_top{ color:#fff; display:inline-block; line-height:80px; padding:0px 30px; position:relative;font-size: 16px;}
.top2 .top2_daohang .top2_daohang_nei .daohang_nei_top:before{    content: "";display: block;width:1px;height:13px;background: #fff;position: absolute;left:100%;bottom:41%;}
.top2 .top2_daohang .top2_daohang_nei .daohang_nei_top:hover{ border-bottom:2px solid #fff; line-height:76px;}
.top2 .top2_daohang .top2_daohang_nei .xiala{ background:#1c52a1; position:absolute; display:none;width: 127px;text-align: center;z-index: 8;} 
.top2 .top2_daohang .top2_daohang_nei .xiala li{height: 50px;line-height: 50px;}
.top2 .top2_daohang .top2_daohang_nei .xiala li a{display: inline-block;color: #fff;font-size: 14px;}
.top2 .top2_daohang .top2_daohang_nei .xiala2{ width:152px; height:200px;}
.top2 .top2_daohang .top2_daohang_nei .xiala2 .xiala_nei{ width:100% !important; text-align:center !important; padding-left:0px !important; border:0px !important}
.top2 .top2_daohang .top2_daohang_nei .xiala .xiala_nei{ width:24.33%; text-align:left; line-height:30px; border-right:1px solid #e6e6e6; margin-top:30px; height:340px; padding:0px 20px}
.top2 .top2_daohang .top2_daohang_nei .xiala .xiala_nei:nth-child(4){ border-right:0px}
.top2 .top2_daohang .top2_daohang_nei .xiala .xiala_nei .xiala_nei_title{ font-size:14px; color:#fff; display:inline-block; padding-bottom:10px}
.top2 .top2_daohang .top2_daohang_nei .xiala .xiala_nei a{display:inline-block; width:100%; color:#c1c1c1; font-size:12px}
.top2 .top2_daohang .top2_daohang_nei .xiala .xiala_nei a:hover{ color:#fff}
.top2 .top2_daohang .top2_daohang_nei .xiala a:before{ display:none}
.top2 .top2_daohang .top2_daohang_nei:last-child .daohang_nei_top:before{background:none;}

.banner{ position:relative}

.index_body_yi{ background:#1d52a2; width:100%; position:absolute;height:98px; z-index:5}
.index_body_yi .body_yi_nei{ max-width:1090px; margin:0 auto; position:relative}
.index_body_yi .body_yi_nei .yi_nei_xun{ font-size:15px; color:#FFFFFF; text-align:center; display:inline-block; padding:0px 86px; position:absolute; top:-35px}

.index_body_yi .body_yi_nei .yi_nei_xun:nth-child(2){ left:262px; padding:0 75px; top:-35px}
.index_body_yi .body_yi_nei .yi_nei_xun:nth-child(3){ left:545px; padding:0 79px; top:-35px}
.index_body_yi .body_yi_nei .yi_nei_xun:nth-child(4){ left:826px; padding:0 54px; top:-35px}
.index_body_yi .body_yi_nei .yi_nei_xun div:nth-child(1){ padding-bottom:20px}

.index_body_er{ width:100%;padding-bottom:0px;}
.index_body_er .body_er_nei{ max-width:1350px; margin:30px auto;}
.er_nei_title{ text-align:center;margin:40px 0;}
.er_nei_title p:nth-child(1){ font-size:30px; color:#3e3a39; padding-bottom:10px}
.er_nei_title p:nth-child(2){ font-size:12px; color:#3e3a39;}
.er_nei_title p:nth-child(2) span{ font-size:12px; color:#3e3a39; font-weight:bolder; padding-right:10px}
.index_body_er .body_er_nei .er_nei_left{ width:100%}
.index_body_er .body_er_nei .er_nei_right{ margin-left:686px}
.index_body_er .body_er_nei .er_nei_left .nei_left_xun{ display:inline-block; padding:23px 0px; border:2px solid #ebeaea; text-align:center; margin-right:10px; margin-bottom:11px; background:#fff; position:relative; overflow:hidden; width:420px; height:auto}
.index_body_er .body_er_nei .er_nei_left .nei_left_xun .left_xun_title{ height:278px}
.index_body_er .body_er_nei .er_nei_left .nei_left_xun img{ height:283px}

.index_body_er .body_er_nei .er_nei_left .nei_left_xun .left_xun_body{ padding-top:10px; padding-bottom:17px}
.index_body_er .body_er_nei .er_nei_left .nei_left_xun .left_xun_body p:nth-child(1){ font-size:10px; color:#595757; font-weight:bolder}
.index_body_er .body_er_nei .er_nei_left .nei_left_xun .left_xun_bottom{ color:#3e3a39; font-weight:bolder;font-size: 16px;}
.index_body_er .body_er_nei .er_nei_left .nei_left_xun .left_xun_bottom:hover{color:#1e509b;}
.index_body_er .body_er_nei .er_nei_left .nei_left_xun .left_xun_bottom span{ display:inline-block; width:18px; height:18px; background:#1c52a1; color:#fff; border-radius:30px; text-align:center; line-height:18px; margin-left:5px}
.index_body_er .body_er_nei .er_nei_left .nei_left_xun .left_xun_bg{ width:323px; height:400px; background:url(../images/bn9.png) no-repeat 50% 50%; position:absolute; top:0; left:-323px; font-size:18px; color:#fff; text-align:center; line-height:400px;-webkit-transition: all 0.5s ease;}
.index_body_er .body_er_nei .er_nei_left .nei_left_xun:hover .left_xun_bg{	left:0px;}
.index_body_er .body_er_nei .er_nei_left .nei_left_xun:hover .left_xun_bg,.index_body_er .body_er_nei .er_nei_left .nei_left_xun .left_xun_bg{
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;}


.index_body_er .body_er_nei .er_nei_left .nei_left_xun .left_xun_bg span{ display:inline-block; width:30px; height:30px; border:1px solid #fff; border-radius:300px; text-align:center; line-height:30px; font-size:20px; margin-left:20px}
.index_body_er .body_er_nei .er_nei_right .nei_right_nei{display:inline-block; border:2px solid #ebeaea; text-align:center; background:url(../images/bg2.jpg) no-repeat 50% 50%; width:656px; height:823px; padding:50px 0px}
.index_body_er .body_er_nei .er_nei_right .nei_right_nei .right_nei_title{ height:525px; margin:0 auto}
.index_body_er .body_er_nei .er_nei_right .nei_right_nei .right_nei_body{ padding-top:23px}
.index_body_er .body_er_nei .er_nei_right .nei_right_nei .right_nei_body p:nth-child(1){ color:#3e3a39; font-size:16px; font-weight:bolder; padding-bottom:10px}
.index_body_er .body_er_nei .er_nei_right .nei_right_nei .right_nei_body p:nth-child(2){ color:#3e3a39; font-size:22px;}
.index_body_er .body_er_nei .er_nei_right .nei_right_nei .right_nei_bottom{ font-size:18px; color:#FFFFFF; border:1px solid #FFFFFF; width:265px; height:52px; margin:87px auto; line-height:52px; border-radius:10px}


.index_body_er .body_er_nei_er{ padding-bottom:30px}
.index_body_er .body_er_nei_er img{ width: 100%;}

.er_body_xun div:nth-child(3){ padding-top:20px}


.ryzs{width: 420px;}
.ryzs img{width:100%;height:auto;}
.ryzstit{height: 40px;line-height: 40px;color: #fff;font-size: 16px;background:#1c52a1;}
.index_body_si{ max-width:1350px; margin:0 auto; padding-bottom:70px}

.index_body_si .index_body_si_body .si_body_xun{ width:14.2%;height: 520px;border-bottom: 15px solid #1c52a1;}
.index_body_si .index_body_si_body .si_body_xun .body_xun_yi{ text-align:center; width:100%; height:505px; background:#FFFFFF;}
.index_body_si .index_body_si_body .si_body_xun .body_xun_title{ background:#1c52a1; height:105px; color:#ffffff; font-size:15px; text-align:center; line-height:105px; border-right:1px solid #ffffff}
.index_body_si .index_body_si_body .si_body_xun .body_xun_title:last-child{border-right:none;}
.body_xun_title a{display: inline-block;color: #fff;font-size: 16px;}
.index_body_si .index_body_si_body .si_body_xun .body_xun_body{ padding:16px 0px;text-align:center;}
.index_body_si .index_body_si_body .si_body_xun .body_xun_body a{ display:inline-block; width:73%; color:#717071; font-size:12px; padding:12px 0px; background:url(../images/bn18.png) no-repeat 50% 100%;    overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
.index_body_si .index_body_si_body .si_body_xun .body_xun_bottom{ margin-top:80px; display:inline-block}
.index_body_si .index_body_si_body .si_body_xun .body_xun_er{ width:550px; margin-top:-30px; display:none;position: absolute;}

.index_body_si .index_body_si_body .si_body_xun .body_xun_er.show{ display:inline-block}
.index_body_si .index_body_si_body .si_body_xun .body_xun_er.hide{ display:none}

.index_body_si .index_body_si_body .si_body_xun .body_xun_er .xun_er_title{ background:url(../images/bn23.png) no-repeat 50% 50%; padding:32px 43px; text-align:center; display: inline-block; width: 100%;}
.index_body_si .index_body_si_body .si_body_xun .body_xun_er .xun_er_title div:nth-child(1){ margin-bottom:10px}
.index_body_si .index_body_si_body .si_body_xun .body_xun_er .xun_er_title div{ font-size:20px; color:#ffffff;padding-left:15px;}
.index_body_si .index_body_si_body .si_body_xun .body_xun_er .xun_er_body{ height:435px; border-bottom:15px solid #1c52a1; background:#fff; border-left:1px solid #dfdfdf; border-right:1px solid #dfdfdf;}
.index_body_si .index_body_si_body .si_body_xun .body_xun_er .xun_er_body .er_body_xun{ display:inline-block; border-right:1px solid #d2d2d2; height:100%; text-align:center; width:49%}
.index_body_si .index_body_si_body .si_body_xun .body_xun_er .xun_er_body .er_body_xun:nth-child(2){ border:0px}
.index_body_si .index_body_si_body .si_body_xun .body_xun_er .xun_er_body .er_body_xun div:nth-child(1){ text-align:left; padding-left:15px; color:#3e3a39; font-size:14px; padding-top:15px; padding-bottom:30px}
.index_body_si .index_body_si_body .si_body_xun .body_xun_er .xun_er_body .er_body_xun div:nth-child(1) p:nth-child(1){ color:#3e3a39; font-size:12px; font-weight:bolder}
.index_body_si .index_body_si_body .si_body_xun .body_xun_er .xun_er_body .er_body_xun div:nth-child(2){ width:220px; margin:0 auto}
.index_body_si .index_body_si_body .si_body_xun .body_xun_er .xun_er_body .er_body_xun div:nth-child(3){ font-size:15px; color:#3e3a39; font-size:15px}
.index_body_si .index_body_si_body .si_body_xun .body_xun_er .xun_er_body .er_body_xun div:nth-child(3) .fa-angle-right{ padding-left:10px}

.index_body_san{ width:100%; background:#FFFFFF;margin-top: 100px;}
.index_body_san .index_body_san_nei{ max-width:1350px; margin:50px auto}
.index_body_san .index_body_san_nei .er_nei_body{ border-top:14px solid #1c52a1; background:#ededed; margin-top:55px; padding:14px 0px; position:relative;}
.index_body_san .index_body_san_nei .er_nei_body .nei_body_left{ font-size:16px; color:#3e3a39; line-height:32px; padding:0px 22px; width:47%}
.index_body_san .index_body_san_nei .er_nei_body .nei_body_left span{ color:#000000; font-size:20px; font-weight:bolder}
.index_body_san .index_body_san_nei .er_nei_body .nei_body_left p{ text-indent:2em; margin-bottom: 10px;line-height: 30px;}
.index_body_san .index_body_san_nei .er_nei_body .nei_body_left p:last-child{ padding-bottom: 0px;}
.index_body_san .index_body_san_nei .er_nei_body .nei_body_left a{ color:#B81C1F; text-transform:uppercase}
.index_body_san .index_body_san_nei .er_nei_body .nei_body_right{ position:absolute; right:0; top:-20px; overflow:hidden}

.index_body_wu{ width:100%; background:url(../images/bn17.png) no-repeat 50% 50%; height:250px; margin-top:90px; margin-bottom:50px;}
.index_body_wu .body_wu_nei{  max-width:1350px; margin:0 auto; position:relative}
.index_body_wu .body_wu_nei .wrapper{ position:absolute; top:165px; font-size:36px; color:#fff; left:160px}
.index_body_wu .body_wu_nei .wrapper .counter:nth-child(1){ margin-right:225px}
.index_body_wu .body_wu_nei .wrapper .counter:nth-child(2){ margin-right:255px}
.index_body_wu .body_wu_nei .wrapper .counter:nth-child(3){ margin-right:230px}

.index_body_six{ width:100%; background:#f6f6f6; padding-top:30px;margin-bottom:50px;}
.index_body_six .body_six_nei{  width:100%; margin:0 auto;}
.index_body_six .body_six_nei .six_nei_body{ padding-top:48px;height: 400px;position: relative;width: 100%;}
.six_nei_body{width: 220px;height: 250px;display: inline-block;text-align: center;}
.index_body_six .body_six_nei .six_nei_body .nei_body_xun{ display:inline-block; background:url(../images/bg4.jpg) no-repeat 50% 50%; width:100%; height:200px; overflow:hidden;}
.index_body_six .body_six_nei .six_nei_body .x1{background:url(../images/bg4.jpg) no-repeat 50% 50%;}
.index_body_six .body_six_nei .six_nei_body .x2{ background:url(../images/bg5.jpg) no-repeat 50% 50%; }
.index_body_six .body_six_nei .six_nei_body .x3{ background:url(../images/bg6.jpg) no-repeat 50% 50%; }
.index_body_six .body_six_nei .six_nei_body .x4{ background:url(../images/bg7.jpg) no-repeat 50% 50%; }
.index_body_six .body_six_nei .six_nei_body .x5{ background:url(../images/bg8.jpg) no-repeat 50% 50%; }
.index_body_six .body_six_nei .six_nei_body .x6{ background:url(../images/bgcl.jpg) no-repeat 50% 50%; }
.index_body_six .body_six_nei .six_nei_body .x7{background:url(../images/bgyl.jpg) no-repeat 50% 50%; }
.index_body_six .body_six_nei .six_nei_body .x8{background:url(../images/bgcg.jpg) no-repeat 50% 50%; }
.index_body_six .body_six_nei .six_nei_body .x9{background:url(../images/bgfy.jpg) no-repeat 50% 50%; }
.index_body_six .body_six_nei .six_nei_body .nei_body_xun div{ background:rgba(0,0,0,0.65); width:100%; height:100%;transition: all 0.5s ease 0s;
-webkit-transform: all 0.5s ease 0s; text-align:center}
.index_body_six .body_six_nei .six_nei_body .nei_body_xun div p{ color:#fff}
/*.index_body_six .body_six_nei .six_nei_body .nei_body_xun div p:nth-child(1){ font-size:16px; padding-top:20px}*/
.index_body_six .body_six_nei .six_nei_body .nei_body_xun  p{text-align: center;line-height: 200px;}
.index_body_six .body_six_nei .six_nei_body .nei_body_xun div p img{height: 111px;}
/*.index_body_six .body_six_nei .six_nei_body .nei_body_xun div p:nth-child(2){ font-size:15px; margin-top:15px; display:inline-block; background:url(../images/bn28.png) no-repeat 50% 80%; width:100%;height: 30px;}
.index_body_six .body_six_nei .six_nei_body .nei_body_xun div p:nth-child(3){ display:inline-block; border:1px solid #fff; border-radius:100%; width:30px; height:30px; font-size:15px; line-height:28px}*/
.index_body_six .body_six_nei .six_nei_body .nei_body_xun:hover div:hover{background: linear-gradient(to bottom,rgb(33, 69, 122),rgb(84, 148, 246)); transition: all 0.5s ease 0s;
-webkit-transform: all 0.5s ease 0s;}
.six_nei_body a{
    display: inline-block;
    width: 10%;
    height: 270px;
    float: left;
    margin: 0 10px;
}
.six_nei_body a p{font-size: 16px;height: 50px;line-height: 50px;}
.six_nei_body a span{
  display: inline-block;
    width: 30px;
    height: 30px;
    background: #1c52a1;
    color: #fff;
    font-size: 18px;
    border-radius: 15px;
    line-height: 30px;
    margin:0 10px;
}

.minban{
  width: 100%;
  clear: both;
  margin-top: 80px;
}
.minban img{width:100%;height:auto;}
.index_body_qi{ width:100%; background:#1c52a1; padding-bottom:50px}
.index_body_qi .body_qi_nei{  max-width:1350px; margin:0 auto;}
.in-new{
  width: 100%;
  height: 460px;
  margin-top:100px;
}
.innew-left{
  width: 30%;
  float: left;
  text-align: center;
  padding-top: 80px;
}
.innew-left a{
  display:block;
  text-align: center;
  color: #fff;
  font-size: 16px;
  height: 40px;
  line-height: 40px;
}
.newmore{
  width: 200px;
  height: 40px;
  border: 1px solid #ddd;
  margin: 30px auto;
}
.innew-right{
  width: 60%;
  float: left;
  margin-top: 50px;
}
.innew-right li{
  width: 27.5%;
  height: 385px;
  background: #fff;
  float: left;
  margin: 10px 20px;
}
.innew-right li img{
  width: 100%;
  height:250px;
}
.innew-right li p{
  width: 88%;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 20px;
}
.innew-right li p:hover{color:#1c52a1;}
.innew-right li .stop{
  padding-left: 20px;
  display:block;
  font-size: 14px;
}
.innew-right li .sbot{
  display: block;
  width: 30px;
  height: 30px;
  color: #fff;
  background: #1c52a1;
  border-radius:15px;
  text-align: center;
  line-height: 30px;
  margin: 10px 20px;
  font-size: 16px;
}
.innew-right li .sbot:hover{
  background: #000;
}
.index_body_qi .body_qi_nei .qi_nei_body{ padding-top:50px}
.index_body_qi .body_qi_nei .qi_nei_body .nei_body_xun{ width:335px; margin-right:2px; height:475px}
.index_body_qi .body_qi_nei .qi_nei_body .nei_body_xun .body_xun_title{width:100%; background:#1c52a1; color:#fff; font-size:16px; padding:35px 48px;}
.index_body_qi .body_qi_nei .qi_nei_body .nei_body_xun .body_xun_title span{ display:inline-block; width:22px; height:22px; border:1px solid #fff; border-radius:50%; text-align:center; line-height:22px; float:right}
.index_body_qi .body_qi_nei .qi_nei_body .nei_body_xun .body_xun_title a{color: #fff;font-size: 16px;}
/*.index_body_qi .body_qi_nei .qi_nei_body .nei_body_xun .body_xun_title a:nth-child(1){ 
  display:inline-block; width:22px;height:22px; border:1px solid #fff; text-align:center; border-radius:100%; line-height:22px; float:right; margin-top:25px; margin-right:20px
}*/
.index_body_qi .body_qi_nei .qi_nei_body .nei_body_xun .body_xun_body{ background:url(../images/bg9.jpg) no-repeat 50% 50%; padding:46px 46px 35px 46px;; height:404px; display:block !important}
.index_body_qi .body_qi_nei .qi_nei_body .nei_body_xun:nth-child(2) .body_xun_body{ background:url(../images/bg10.jpg) no-repeat 50% 50%;}
.index_body_qi .body_qi_nei .qi_nei_body .nei_body_xun:nth-child(3) .body_xun_body{ background:url(../images/bg11.jpg) no-repeat 50% 50%;}
.index_body_qi .body_qi_nei .qi_nei_body .nei_body_xun:nth-child(4) .body_xun_body{ background:url(../images/bg12.jpg) no-repeat 50% 50%;}
.index_body_qi .body_qi_nei .qi_nei_body .nei_body_xun .body_xun_body a{ background:url(../images/bn29.png) no-repeat 0% 50%; padding-left:10px; font-size:13px; color:#3e3a39; margin-bottom:24px; display:inline-block;
overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap; width:100%;
}
.index_body_qi .body_qi_nei .qi_nei_body .nei_body_xun .body_xun_body .xain{ background:#cfcfcf; height:1px; width:100%; margin-top:65px}
.index_body_qi .body_qi_nei .qi_nei_body .nei_body_xun .body_xun_body .xain div{ background:#1c52a1; height:1px; width:0px}

.inabout{
  width: 100%;
  height: 800px;
  position: relative;  
  background: #f8f8f8;
  margin: 100px 0;
}
.inabout-top{
  width: 100%;
}
.inabout-top img{width:100%;height:auto;}
.inabout-bot{
  width: 100%;
  height: 450px;
  position: absolute;
  bottom: 50px;
}
.inabout-con{
  width: 1200px;
  height: 450px;
  margin:0 auto;
  background: #fff;
  padding: 50px 30px 0;
}
.inabout-con p{
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 1px;
  text-indent: 30px;
}
.indexmore{
    color: #1c52a1;
    font-size: 16px;
    display: inline-block;
    width: 200px;
    height: 35px;
    border: 1px solid #1c52a1;
    text-align: center;
    line-height: 35px;
    margin: 40px 42%;
}
.index_body_ba{ width:100%; background:#f2f2f2; border-top:1px solid #dcdcdc}
.index_body_ba .body_ba_nei{  max-width:1350px; margin:0 auto;}
.index_body_ba .body_ba_nei a{ display:inline-block; background:url(../images/bn31.png) no-repeat 0% 50%; height:107px; padding-top:40px;margin-right:42px;}
.index_body_ba .body_ba_nei a:hover{ background:url(../images/bn35.png) no-repeat 0% 50%;}
.index_body_ba .body_ba_nei a p:nth-child(1){ color:#1a1a1a; font-size:20px; padding-left:118px}
.index_body_ba .body_ba_nei a p:nth-child(2){ color:#808080; font-size:13px; padding-left:118px}
.index_body_ba .body_ba_nei a:nth-child(2){ background:url(../images/bn30.png) no-repeat 0% 50%}
.index_body_ba .body_ba_nei a:nth-child(2):hover{ background:url(../images/bn34.png) no-repeat 0% 50%;}
.index_body_ba .body_ba_nei a:nth-child(3){ background:url(../images/bn32.png) no-repeat 0% 50%}
.index_body_ba .body_ba_nei a:nth-child(3):hover{ background:url(../images/bn36.png) no-repeat 0% 50%;}
.index_body_ba .body_ba_nei a:nth-child(4){ background:url(../images/bn33.png) no-repeat 0% 50%;margin-right: 0px;}
.index_body_ba .body_ba_nei a:nth-child(4):hover{ background:url(../images/bn37.png) no-repeat 0% 50%;}


.appli{ width:100%;padding-bottom:40px; background:#f8f8f8;margin:0 auto;min-width:1100px; }
.albt{font-size:22px; color:#333;font-weight:bold; margin-bottom:10px;}
.albt span{font-size:22px;color:#005aab; font-weight:bold;}
.albt font{font-size:16px; font-family:Arial, Helvetica, sans-serif; text-transform:uppercase; font-weight:normal; padding-left:10px; color:#c1c1c1}
.appbx{ overflow:hidden;}
.apL{ width:550px; overflow:hidden;float: left;}
.apL li{ float:left; width:250px; height:82px; margin-right:25px; margin-top:10px;list-style: none;border: 1px solid #ebebeb;}
.apL li a{ padding:10px 0 0 25px;  height:80px; display:block; font-size:16px; font-weight:bold; background:url(../images/white.jpg) no-repeat;text-align:left;}
.apL li i{ display:block; color:#555; font-family:Arial, Helvetica, sans-serif; font-weight:normal; font-style:normal; font-size:12px;}
.apL li a:hover{ background:url(../images/cur.jpg) no-repeat;}
.apL li.cur a{ background:url(../images/cur.jpg) no-repeat;padding:10px 0 0 25px;  height:80px;  color:#fff; text-decoration:none;}
.apL li.cur a i{ display:block; color:#fff; font-family:Arial, Helvetica, sans-serif; font-weight:normal; font-style:normal; font-size:12px;}
.apR{margin-top:12px;}
.apR dd h3{width: 100%;height: 35px;background: #1c52a1;line-height: 35px;}
.apR dd h3 a{color:#fff;display:inline-block;font-size:16px;}


.bottom{ width:100%; background:#2f2f2f; margin-top:1px}
.bottom .bottom_nei{  max-width:1350px; margin:0 auto; padding:20px 0px}
.bottom .bottom_nei .bottom_nei_left{ width:100%}
.bottom .bottom_nei .bottom_nei_left .nei_left_xun{ margin-right:40px;}
.bottom .bottom_nei .bottom_nei_left .nei_left_xun:nth-child(1){ width:15%}
.bottom .bottom_nei .bottom_nei_left .nei_left_xun:nth-child(2){ width:15%}
.bottom .bottom_nei .bottom_nei_left .nei_left_xun:nth-child(3){ width:23%}
.bottom .bottom_nei .bottom_nei_left .nei_left_xun:nth-child(4){ width:20%}

.bottom .bottom_nei .bottom_nei_left .nei_left_xun:nth-child(5){ margin-right:0px}
.bottom .bottom_nei .bottom_nei_left .nei_left_xun a{ width:100%; display:inline-block; color:#979797; font-size:13px; line-height:21px; background:url(../images/bn112.png) no-repeat 0% 50%;text-indent: 15px; }
.bottom .bottom_nei .bottom_nei_left .nei_left_xun a:nth-child(1){    font-size: 16px;color: #fff;height: 35px;line-height: 35px;font-weight:500;margin-bottom:20px; background:url(../images/bn111.png) no-repeat 0% 50%}
.bottom .bottom_nei .bottom_nei_right{ width:40%;}
.bottom .bottom_nei .bottom_nei_right a{ display:inline-block}
.bottom .bottom_nei .bottom_nei_right a:nth-child(1){  margin-right: 50px;}
.bottom .bottom_nei .bottom_nei_right a div:nth-child(1){ font-size:25px; color:#fff; background:url(../images/bn39.png) no-repeat 0% 50%; padding-left:45px}
.bottom .bottom_nei .bottom_nei_right a div:nth-child(2){ font-size:22px; color:#fff; border:1px solid #bfbcbb; padding:15px 90px; margin-top:30px}
.bottom_di{ font-size:13px; color:#b6b6b6; background:#1e1c1b; padding:28px 0px; text-align:center}
.bottom_tiao{ height:12px; background:#901e29; width:100%}

.about_nei{ margin-top:80px}
.abot_body{ margin-top:89px}
.abot_body .abot_body_xun{ text-align:center; width:21%; margin-right:71px;}
.abot_body .abot_body_xun .body_xun_img.flip{
	-webkit-transform: rotateY(360deg);
       -moz-transform: rotateY(360deg);
        -ms-transform: rotateY(360deg);
         -o-transform: rotateY(360deg);
            transform: rotateY(360deg);
           transition: all 1s ease;
    -webkit-transform: all 1s ease;
	}
.abot_body .abot_body_xun:nth-child(4){ margin-right:0px}
.abot_body .abot_body_xun div:nth-child(1){ height:91px}
.abot_body .abot_body_xun div:nth-child(2){ height:28px; width:1px; background:#c0c0c0; margin:27px auto}
.abot_body .abot_body_xun div:nth-child(3){ color:#000000; font-size:21px; padding-bottom:62px}
.abot_body .abot_body_xun div:nth-child(4){ color:#3e3a39; font-size:18px; line-height:32px}
.about_si .about_si_nei{ margin-top:50px}
.about_si .about_si_nei img{ width: 100%;}
.about_wu .about_wu_nei{ width:100%}
.about_wu .about_wu_nei .about_wu_body{ background:url(../images/bg14.jpg) no-repeat 50%/cover; margin-top:50px}
.about_wu .about_wu_nei .about_wu_body .wu_body_left{width:50%;}
.about_wu .about_wu_nei .about_wu_body .wu_body_left a{ display:inline-block; width:48%; margin-right:-4px; overflow:hidden; margin-bottom:-3px; position:relative;}
.about_wu .about_wu_nei .about_wu_body .wu_body_left a .body_left_more{ background:url(../images/bn55.png) no-repeat 50%/cover; width:100%; height:100%; position:absolute; z-index:10; top:0; font-size:24px; color:#ffffff; text-align:center; left:-504px}
.about_wu .about_wu_nei .about_wu_body .wu_body_left a:hover .body_left_more{	left:0px;}
.about_wu .about_wu_nei .about_wu_body .wu_body_left a .body_left_more,.about_wu .about_wu_nei .about_wu_body .wu_body_left a:hover .body_left_more{
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;}

.about_wu .about_wu_nei .about_wu_body .wu_body_left a img{ width:100%}
.about_wu .about_wu_nei .about_wu_body .wu_body_right{width:46%; padding-left:70px}
.about_wu .about_wu_nei .about_wu_body .wu_body_right .body_right_nei{ margin-top:140px}
.about_wu .about_wu_nei .about_wu_body .wu_body_right .body_right_nei p:nth-child(1){ color:#333333; font-size:46px}
.about_wu .about_wu_nei .about_wu_body .wu_body_right .body_right_nei p:nth-child(2){ color:#666666; font-size:24px; padding-top:12px; padding-bottom:56px}
.about_wu .about_wu_nei .about_wu_body .wu_body_right .body_right_nei p:nth-child(2) span{ color:#666666; font-size:18px}
.about_wu .about_wu_nei .about_wu_body .wu_body_right .body_right_nei p:nth-child(3){ color:#333333; font-size:20px; line-height:30px}
.about_six .about_six_nei{ width:100%}
.about_six .about_six_nei .about_six_body{ background:url(../images/bg16.jpg) no-repeat 50% 50%; margin-top:50px; height:760px}
.about_qi .about_qi_nei{ width:100%}
.about_qi .about_qi_nei .about_qi_body{ margin-top:20px; margin-bottom:80px}

.case{ padding-bottom:0px}
.case .case_nei{width: 100%;margin: 0 auto;}
.case_nei_body{ margin-top:48px;}
.case_nei_body .case_top{padding-bottom: 20px;}
.case_nei_body .case_top ul{ text-align:center}
.case_nei_body .case_top ul li{display: inline-block;width: 120px;margin: 0 10px;}
.case_nei_body .case_top ul li a{display: inline-block;width: 120px;border: 1px solid #ccc;border-left: none;border-right: none;text-align: center;line-height: 40px;}
.case_nei_body .case_top ul li a:hover{ border:0px; background:#1c52a1; cursor:pointer; color:#FFFFFF; display:inline-block}
.case_nei_body .case_top ul li a{font-size: 16px;color: #4c4c4c;line-height: 40px;}
.case_nei_body .case_body{ cursor:pointer}
.case_nei_body .case_body .case_body_left{width: 50%;float: left;background: #d9d9d9;height: 407px;padding-left: 180px;padding-top: 90px;padding-right: 97px;}
.case .case_nei .case_nei_body .case_body .case_body_left dl{    width: 100%;padding-bottom: 22px;position: relative;margin-bottom: 20px;}
.case .case_nei .case_nei_body .case_body .case_body_left dl:before{content: "";display: block;width: 45px;height: 1px;background: #aeaeae;position: absolute;left: 0;bottom: 0px;}
.case .case_nei .case_nei_body .case_body .case_body_left dl a{    color: #333;}
.case .case_nei .case_nei_body .case_body .case_body_left dl a dt{    font-size: 26px;color: #333;width: 100%;height: 34px;
overflow: hidden;}
.case .case_nei .case_nei_body .case_body:hover .case_body_left dl a dt{    color: #1c52a1;}
.case .case_nei .case_nei_body .case_body .case_body_left dl dd{font-size: 18px;color: #333;width: 100%;height: 22px;overflow: hidden; margin-top:10px;}
.case .case_nei .case_nei_body .case_body .case_body_left p{    font-size: 14px;color: #666;line-height: 24px;margin-bottom: 35px;}
.case .case_nei .case_nei_body .case_body .case_body_left .read_m{    display: block;padding-left: 23px; background:url(../images/img1.png) no-repeat 0 0;font-size: 14px;color: #9c9c9c;font-style: oblique;}
.case .case_nei .case_nei_body .case_body:hover .case_body_left .read_m{    color: #1c52a1; background:url(../images/bn72.png) no-repeat 0 0;}
.case .case_nei .case_nei_body .case_body .case_body_right{    width: 50%;float: left;height: 407px; position:relative; overflow:hidden;}
.case .case_nei .case_nei_body .case_body .case_body_right a{display: block;width: 100%;height: 407px;text-align: center;position: relative;}
.case .case_nei .case_nei_body .case_body .case_body_right .tra{position: absolute;top: 0;right: 0;bottom: 0;left: 0; width:45%; height:auto;display: block;vertical-align: middle;margin: auto;}

.case .case_nei .case_nei_body .case_body .case_body_left2{width: 50%;float: left;height: 407px;}
.case .case_nei .case_nei_body .case_body .case_body_left2 a{display: block;width: 100%;height: 407px;text-align: center;position: relative;}
.case .case_nei .case_nei_body .case_body .case_body_right2{padding-right: 180px;padding-left: 97px;}
.case .case_nei .fenye{    width: 100%;text-align: center; margin-top:50px}
.case .case_nei .fenye .fenye_nei a{display: inline-block;padding: 0 13px;height: 34px;text-align: center;line-height: 34px;margin: 0 3px;border-radius: 5px;border: #dddddd solid 1px;overflow: hidden;font-size: 13px;color: #999999;}
.case .case_nei .fenye .fenye_nei a:hover{ background:#1c52a1; border:1px solid #1c52a1; color:#FFFFFF}

.news{ margin-top:0px; padding-top:10px}
.news .news_body ul{max-width: 1350px; margin:0 auto; padding-top:50px}
.news .news_body ul li{width: 580px;height:130px;float: left;margin-right:94px;margin-bottom: 35px;}
.news .news_body ul li p{width: 20%;float: left;}
.news .news_body ul li p img{width: 100%;height: 80px;}
.news .news_body ul li a dl{width: 20%;height: 104px;float: left;text-align: center;background: url(../images/bn73.png) no-repeat;padding-top: 19px;}
.news .news_body ul li a dl dt{    width: 100%;text-align: center;font-size: 34px;color: #666;position: relative;margin-bottom: 5px;
padding-bottom: 4px;}
.news .news_body ul li a dl dd{    font-size: 14px;color: #999;}
.news .news_body ul li a div{    width: 80%;float: left;padding-left: 30px;}
.news .news_body ul li a div h5{    width: 100%;height: 25px;overflow: hidden;margin-bottom: 19px;font-size: 20px;color: #333;}
.news .news_body ul li a:hover div h5{ color:#1c52a1}
.news .news_body ul li a div p{font-size: 14px;color: #808080;line-height: 24px;overflow: hidden;width: 100%;}

.starproduct{ margin-top:100px; margin-bottom:10px; padding-top:10px;}
.starproduct .starproduct_nei_body{ padding-top:30px;margin: 0 auto;}
.starproduct .starproduct_nei_body .starproduct_body_xun{ display:inline-block; width:450px; height:444px; overflow:hidden; position:relative; text-align:center}
.starproduct .starproduct_nei_body .starproduct_body_xun div{     width: 378px;height: 468px; margin:0 auto}
.starproduct .starproduct_nei_body .starproduct_body_xun .nei_body_bottom{ position:absolute;    background: rgba(0,0,0,0.5);width: 100%;height: 100%;transition: all 0.5s ease 0s;-webkit-transform: all 0.5s ease 0s;text-align: center; left:0; right:0; top:0}
.starproduct .starproduct_nei_body .starproduct_body_xun div p{ color:#fff}
.starproduct .starproduct_nei_body .starproduct_body_xun div p:nth-child(1){ font-size:16px; padding-top:147px}
.starproduct .starproduct_nei_body .starproduct_body_xun div p:nth-child(2){ font-size:22px; padding-top:11px}
.starproduct .starproduct_nei_body .starproduct_body_xun div p:nth-child(3){ font-size:15px; margin-top:135px; display:inline-block; background:url(../images/bn28.png) no-repeat 50% 70%; width:100%; padding-bottom:25px}
.starproduct .starproduct_nei_body .starproduct_body_xun div p:nth-child(4){ display:inline-block; border:1px solid #fff; border-radius:100%; width:30px; height:30px; font-size:15px; line-height:28px}
.starproduct .starproduct_nei_body .starproduct_body_xun:hover div:hover{background: linear-gradient(to bottom,rgba(153,30,41,0.93),rgba(230,56,40,0.85)); transition: all 0.5s ease 0s;
-webkit-transform: all 0.5s ease 0s;}

.starproduct_er{ margin-top:0px;}
.starproduct_er .starproduct_er_body{ width:1350px;margin:0 auto;}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun{ padding-bottom:20px !important;}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_title{ border:1px solid #DCDCDC; border-radius:5px; line-height:50px; display:block !important}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_title a:nth-child(1){ display:inline-block; font-size:28px; font-weight:bolder; color:#717071; padding:0px 25px; background:url(../images/bn59.png) no-repeat 100% 50%; margin-left: 0px;}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_title a{ margin-left:40px; font-size:14px; color:#717071; display:inline-block}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_title a.color{ color:#1c52a1}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_title a:hover{ color:#1c52a1}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_body{ margin-top:13px}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_body .xun_body_nei_xun{ display:inline-block; position:relative; text-align:center; margin-right:20px; overflow:hidden; margin-top:25px;border: 1px solid #ddd;}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_body .xun_body_nei_xun .nei_xun_title{ width:420px;padding-bottom:25px}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_body .xun_body_nei_xun .nei_xun_title img{ height:350px; }

.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_body .xun_body_nei_xun .nei_xun_wenzi{ background:url(../images/bn60.png) no-repeat 100% 50%; margin:0px 20px; font-size:14px; color:#333333; font-weight:bolder;left:0; right:0; padding-right:26px; margin-bottom:20px; display:block !important;}
.nei_xun_wenzi:hover{color:#1c52a1}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_body .xun_body_nei_xun .nei_xun_more_er{ background:url(../images/bn70.png) no-repeat 50% 50%; position:absolute; top:-31px; left:-325px; right:0; height:100%; width:100%; text-align:center; line-height:360px; color:#fff; font-size:13px; font-weight:bolder;}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_body .xun_body_nei_xun:hover .nei_xun_more_er{	left: 0px;}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_body .xun_body_nei_xun:hover .nei_xun_more_er,.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_body .xun_body_nei_xun .nei_xun_more_er{
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	}

.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_er .xun_er_body .er_body_xun div:nth-child(2){ }
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_er .xun_er_body .er_body_xun div:nth-child(2) img{
-webkit-transform: scale(1);
   -moz-transform: scale(1);
    -ms-transform: scale(1);
     -o-transform: scale(1);
           filter: scale(1);
           filter: transform;
       transition: all 0.5s ease 0s;
-webkit-transform: all 0.5s ease 0s; 
	cursor:pointer;
	
}
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_er .xun_er_body .er_body_xun div:nth-child(2) img:hover{
-webkit-transform: scale(1.10);
   -moz-transform: scale(1.10);
    -ms-transform: scale(1.10);
     -o-transform: scale(1.10);
           filter: scale(1.10);
           filter: transform;
       transition: all 0.5s ease 0s;
-webkit-transform: all 0.5s ease 0s; 
	cursor:pointer;
}

.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_body .xun_body_nei_xun .nei_xun_more{ font-size:18px; color:#1a1a1a; border:1px solid #DCDCDC; padding:10px 0px; margin-top:13px; font-weight:bolder; transition: all 0.5s ease 0s;}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_body .xun_body_nei_xun:hover .nei_xun_more{ border:1px solid #1c52a1; color:#fff; background:#1c52a1; transition: all 0.5s ease 0s;}

.youshi .youshi_nei{ width:100%}
.youshi .youshi_nei .youshi_nei_title span{ font-size:30px; color:#1a1a1a; font-weight:bolder}
.youshi .youshi_nei .youshi_nei_body{ margin-top:60px;}
.youshi .youshi_nei .youshi_nei_body .nei_body_left{ background:url(../images/bg24.jpg) no-repeat 50%/cover; font-size:36px; color:#1a1a1a; line-height:45px; padding:242px 220px; position:relative; height:572px; width:50%}
.youshi .youshi_nei .youshi_nei_body .nei_body_left div{ position:absolute; left:-400px}
.youshi .youshi_nei .youshi_nei_body .nei_body_left p:nth-child(2){ text-indent:2em}
.youshi .youshi_nei .youshi_nei_body .nei_body_right{background:url(../images/bg25.jpg) no-repeat 50% 50%; height:572px; width:50%}

.youshi_er{margin-top:0px}
.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_left{ background:url(../images/bg26.jpg) no-repeat 50% 50%; font-size:36px; color:#fff; line-height:45px; width:50%; height:572px	}
.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right{ background:url(../images/bg24.jpg) no-repeat 50%/cover; font-size:36px; color:#1a1a1a; line-height:45px; width:50%; height:572px}
.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right .nei_body_right_top{ margin-left:90px; padding-top:50px; width:584px}
.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right .nei_body_right_top .body_right_nei{ text-align:center; font-size:16px; color:#808080; margin:0 44px 0 16px; width:104px}
.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right .nei_body_right_top .body_right_nei div:nth-child(1){ width:104px; height:105px; background:url(../images/bn61.png) no-repeat 50% 50%}
.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right .nei_body_right_top .body_right_nei div:nth-child(1):hover{ width:104px; height:105px; background:url(../images/bn61_on.png) no-repeat 50% 50%}
.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right .nei_body_right_top .body_right_nei:nth-child(2) div:nth-child(1){ width:104px; height:105px; background:url(../images/bn62.png) no-repeat 50% 50%}
.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right .nei_body_right_top .body_right_nei:nth-child(2) div:nth-child(1):hover{ width:104px; height:105px; background:url(../images/bn62_on.png) no-repeat 50% 50%}
.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right .nei_body_right_top .body_right_nei:nth-child(3) div:nth-child(1){ width:104px; height:105px; background:url(../images/bn63.png) no-repeat 50% 50%}
.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right .nei_body_right_top .body_right_nei:nth-child(3) div:nth-child(1):hover{ width:104px; height:105px; background:url(../images/bn63_on.png) no-repeat 50% 50%}

.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right .nei_body_right_top .body_right_nei:nth-child(3){ margin-right:0px}
.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right .nei_body_right_top .body_right_nei div:nth-child(3){ padding-bottom:30px}
.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right .body_right_nei2{ padding-left:76px; padding-bottom:35px}

.youshi_san .youshi_nei .youshi_san_nei_body .nei_body_left{ background:url(../images/bg28.jpg) no-repeat 50%/cover; font-size:36px; color:#1a1a1a; line-height:45px; width:35%; height:572px}
.youshi_san .youshi_nei .youshi_san_nei_body .nei_body_right{ background:url(../images/bg27.jpg) no-repeat 50% 50%; font-size:36px; color:#fff; line-height:45px; width:65%; height:572px; overflow:scroll}
.youshi_san .youshi_nei .youshi_san_nei_body .nei_body_right .body_right_yi div{ font-size:16px; color:#000000; line-height:24px}
.youshi_san .youshi_nei .youshi_san_nei_body .nei_body_right .body_right_yi{ margin-top:138px;}
.youshi_san .youshi_nei .youshi_san_nei_body .nei_body_right .body_right_yi div div:nth-child(2){ padding-top:25px}
.youshi_san .youshi_nei .youshi_san_nei_body .nei_body_right .body_right_yi div p:nth-child(3){ border-bottom:3px solid #c1272d; font-size:12px; width:246px; padding-top:25px}

.youshi_si{ margin-bottom:0px}
.youshi_si .youshi_nei .youshi_si_nei_body .nei_body_left{ background:url(../images/bg30.jpg) no-repeat 50%/cover; font-size:36px; color:#1a1a1a; line-height:45px; width:50%; height:572px}
.youshi_si .youshi_nei .youshi_si_nei_body .nei_body_right{ background:url(../images/bg29.jpg) no-repeat 0% 50%; font-size:36px; color:#fff; line-height:45px; width:50%; height:572px; overflow:inherit}

.product1{ width:100%}
.product1 .product1_nei{ max-width:1350px; margin:0 auto; overflow:hidden}
.product1 .product1_nei .product1_nei_top{ margin-top:164px;padding-bottom:164px; position:relative; min-height:400px}
.product1 .product1_nei .product1_nei_top .nei_top_left{ width:38%}
.product1 .product1_nei .product1_nei_top .nei_top_left dl{ border-bottom:1px solid #c1272d}
.product1 .product1_nei .product1_nei_top .nei_top_left dl dd{ color:#b3b3b3; font-size:16px}
.product1 .product1_nei .product1_nei_top .nei_top_left dl dt{ color:#1a1a1a; font-size:40px; padding:13px 0px}
.product1 .product1_nei .product1_nei_top .nei_top_left .top_left_font{ font-size:20px; color:#333333; line-height:36px; padding-top:35px; }
.product1 .product1_nei .product1_nei_top .nei_top_left .top_left_font p{ text-indent:2em;}
.product1 .product1_nei .product1_nei_top .nei_top_right{ text-align:center; width:50%; padding-top:0px; position:absolute; right:0px; top:10px}
.product1 .product1_nei .product1_nei_top .nei_top_right .picScroll-left{position:relative; padding-left:125px; width:100%}
.product1 .product1_nei .product1_nei_top .nei_top_right .picScroll-left .hd .prev{ background:url(../images/bn80.png) no-repeat 50% 50%; width:21px; height:27px; display:inline-block; cursor:pointer; position:absolute; left:0px; top:50%}
.product1 .product1_nei .product1_nei_top .nei_top_right .picScroll-left .hd .next{ background:url(../images/bn81.png) no-repeat 50% 50%; width:21px; height:27px; display:inline-block; cursor:pointer; position:absolute; right:0px; top:50%}
.product1 .product1_nei .product1_nei_top .nei_top_right .picScroll-left .bd{ width:436px; padding-top: 50px;}
.product1 .product1_nei .product1_nei_top .nei_top_right .picScroll-left .bd .picList li{ }
.product1 .product1_nei .product1_nei_center{padding-bottom:164px;}
.product1 .product1_nei .product1_nei_center .nei_center_title{ background:url(../images/bn82.png) no-repeat 50% 60%; color:#1a1a1a; font-size:50px; padding:80px 0px; text-align:center}
.product1 .product1_nei .product1_nei_center .nei_center_body .center_body_yi .center_body_yi_nei .title{ position:relative;}
.product1 .product1_nei .product1_nei_center .nei_center_body .center_body_yi .center_body_yi_nei div .title:nth-child(2){ padding-top:5px}
.product1 .product1_nei .product1_nei_center .nei_center_body .center_body_yi .center_body_yi_nei .title dd{overflow:hidden}
.product1 .product1_nei .product1_nei_center .nei_center_body .center_body_yi .center_body_yi_nei .title dd:nth-child(2){ background:rgba(51, 51, 51, 0.85);; font-size:18px; color:#FFFFFF; position:absolute; left:0; right:0; text-align:center; bottom:0px; line-height:38px}
.product1 .product1_nei .product1_nei_center .nei_center_body .center_body_yi .center_body_yi_nei:nth-child(2){ padding-top:5px}
.product1 .product1_nei .product1_nei_bottom{ padding-bottom:70px}
.product1 .product1_nei .product1_nei_bottom .nei_center_title{background:url(../images/bn83.png) no-repeat 50% 60%; color:#1a1a1a; font-size:50px; padding:62px 0px; text-align:center}
.product1 .product1_neitwo{ max-width:1350px; margin:0 auto; padding-top:70px}
.product1 .product1_neitwo .product1_neitwo_title{ font-size:48px; color:#c1272d; font-weight:bolder}
.product1 .product1_neitwo .product1_neitwo_body{ padding-top:36px}
.product1 .product1_neitwo .product1_neitwo_body .neitwo_body_xun{ display:inline-block; margin-bottom:36px; border-bottom:1px dashed #9e2934; width:100%}
.product1 .product1_neitwo .product1_neitwo_body .neitwo_body_xun:nth-child(6){ border:0px; padding-bottom:48px}
.product1 .product1_neitwo .product1_neitwo_body .neitwo_body_xun p:nth-child(1){ color:#000000; font-size:24px; font-weight:bolder; padding-bottom:25px}
.product1 .product1_neitwo .product1_neitwo_body .neitwo_body_xun p:nth-child(2){ color:#666; font-size:24px; padding-bottom:36px; line-height:60px}
.product1 .product1_neitwo .product1_neitwo_body .neitwo_body_xun p b{ color:#a61c00;}

.product2 .product2_nei_top{ }
.product2 .product2_nei_top .nei_top_left{ width:45% !important} 
.product2 .product2_nei_top .nei_top_left dl dd{ line-height:79px}
.product2 .top_left_font p:nth-child(3){ text-indent:inherit}
.product2 .product2_body .product2_body_xun{ width:100%}
.product2 .product2_body .product2_body_xun .product2_body_title{ color:#808080; font-size:24px; padding-left:57px; margin-top:70px; background:url(../images/bn86.png) no-repeat 0% 50%; padding-top:20px; padding-bottom:20px }
.product2 .product2_body .product2_body_xun .product2_body_bottom{ font-size:21px; color:#333333; line-height:36px}
.product2 .product2_body .product2_body_xun .product2_body_bottom p{ text-indent:2em}
.product2 .product2_body .product2_body_xun .product2_body_bottom p img{ width: 100%;}
.product2 .product2_body .product2_body_xun .product2_body_bottom img{ width: 100%}

.product1 .product1_nei .product4_nei_center{padding: 60px;border-top: none;}
.product1 .product1_nei .product4_nei_center .nei_center_title{ background:url(../images/bn96.png) no-repeat 50% 60%; color:#1a1a1a; font-size:50px; padding:116px 0px; text-align:center}
.product1 .product1_nei .product4_nei_top{ margin-top:269px; border-bottom:0px dashed #000; padding-bottom:164px; position:relative}
.product1 .product1_nei .daohangnei{ border-bottom:3px solid #1c52a1; background:#fff; width:1350px}
/*.product1 .product1_nei .daohangnei.daohangnei_on{position: fixed;top: 0; z-index:98}*/
.product1 .product1_nei .daohangnei ul li{ display:inline-block; padding:10px 18px; font-size:16px; color:#fff; margin-right:25px; cursor:pointer;background: #1e509b;}
.product1 .product1_nei .daohangnei ul li.on{ background:#1c52a1; color:#FFFFFF}
.product1 .product1_nei .daohangnei ul li:hover{ background:#1c52a1; color:#FFFFFF}
.proxg{margin-top: 50px;}
.xgcp li{width: 23.5%;float: left;margin:10px;border: 1px solid #ddd;text-align: center;}
.xgcp li img{width: 100%;}
.xgcp li span{display:inline-block;font-size: 16px;height: 30px;line-height: 30px;}
.product1 .product1_nei .product4_nei_center_er .nei_center_body{ padding-top:50px}
.model-dectil-chose li{margin:10px;}
.model-dectil-chose li a{display:inline-block;font-size: 16px;color: #000;}
.model-dectil-chose li a:hover{color:#1e509b; }
.product4_nei_center_er .product2_body_xun{ width:100%}
.product4_nei_center_er .product2_body_xun .product2_body_title{ color:#808080; font-size:24px; padding-left:57px; margin-top:70px; background:url(../images/bn86.png) no-repeat 0% 50%; padding-top:20px; padding-bottom:20px }
.product4_nei_center_er .product2_body_xun .product2_body_bottom{ padding-top:100px}
.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg{ background:#8c8c8c; text-align:center; width:100%;}
.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr td{ background:#fff; line-height:26px; padding:15px 0px; width:auto; font-size:15px; color:#666666}
.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr td:nth-child(1){ width:20%}
.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(1) td{ background:#a71d26; font-size:18px; color:#fff; font-weight:bolder; border-right:1px solid #FFFFFF}
.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(1) td:nth-child(3){ border:0px}
.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(2) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(3) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(4) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(5) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(6) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(7) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(9) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(8) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(10) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(11) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(12) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(13) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(14) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(15) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(16) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(17) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(21) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(18) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(19) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(20) td:nth-child(1){ background:#e6e6e6; font-size:16px; color:#1a1a1a}
.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(2):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(3):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(4):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(5):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(6):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(7):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(8):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(9):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(10):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(11):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(12):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(13):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(14):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(15):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(16):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(17):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(18):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(19):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(20):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(21):hover td:nth-child(1){ background:#a81d26; color:#FFFFFF}

 .product_diy_body_xun{ width:100%}
 .product_diy_body_xun .product2_body_title{ color:#808080; font-size:24px; padding-left:57px; margin-top:70px; background:url(../images/bn86.png) no-repeat 0% 50%; padding-top:20px; padding-bottom:20px }
 .product_diy_body_xun .product2_body_bottom{ padding-top:100px}
 .product_diy_body_xun .product2_body_bottom .body_bottom_bg{ background:#8c8c8c; text-align:center; width:100%;}
 .product_diy_body_xun .product2_body_bottom .body_bottom_bg tr td{ background:#fff; line-height:50px; width:40%; font-size:15px; color:#666666}
 .product_diy_body_xun .product2_body_bottom .body_bottom_bg tr td:nth-child(1){ width:20%}
 .product_diy_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(1) td:nth-child(3){ border:0px}

.contact{ margin-top:37px !important; padding:0px !important}
.contact .contact_body{ padding:50px 0px; max-width:1200px; margin:0 auto}
.num{width: 280px;height: 287px;border: 2px solid #ccc;float: left;position: relative;text-align: center;background:#efefef; margin-right:26px; text-align:center;}
.contact .contact_body .num:nth-child(4){ margin-right:0px}
.contact .contact_body .num dl{ padding-top:40px; padding-bottom:35px}
.contact .contact_body .num dl dd{ padding-bottom:30px}
.contact .contact_body .num dl dt{ color:#4d4d4d; font-size:16px}
.contact .contact_body .num .dl2{ padding:0px}
.contact .contact_body .num .dl2 p{ color:#333; font-size:15px; padding:0px 15px; line-height:18px;font-weight: bold;}
.contact .contact_body .num:nth-child(2) .dl2 p:nth-child(1):hover{ font-weight:bolder;}
.contact .contact_body .num:nth-child(2) .dl2 p:nth-child(2):hover{ font-weight:bolder;}
.contact .map{  width: 1200px;height:400px;margin:0 auto;  }
.contact .contact_body .num .phone p:first-child{ margin-bottom:10px;}
.contact .contact_body .num .phone p{ font-size:16px;font-weight:bolder;}
.contact .contact_body .num .dl2 p a span{ display:inline-block; margin-right:5px;}
.contact .contact_body .num .dl2 p span{ display:inline-block; margin-right:5px;}
.contact .contact_body .num .dl2 p .fa-weixin{ color:#9ac047;}

.honor{ margin-top:130px}
.honor .nei_center_body{ margin-top:50px}
.honor .nei_center_body .honor_body_xun{ display:inline-block; background:url(../images/honor13.png) no-repeat 50% 80%; width:23%; margin-bottom:50px; text-align:center; margin-right: 36px;}
.honor .nei_center_body .honor_body_xun:nth-child(4n){ margin-right:0px}
.honor .nei_center_body .honor_body_xun dt{ text-align:center; padding-top:75px}
.honor .nei_center_body .honor_body_xun dt p:nth-child(1){ font-size:50px; color:#808080}
.honor .nei_center_body .honor_body_xun dt p:nth-child(2){ font-size:25px; color:#333333}
.honor .nei_center_body .honor_body_xun dt p:nth-child(3){ font-size:25px; color:#808080}

.product5{ width:100%; padding-bottom:200px !important; position:relative}
.product5 .product5_nei_title{ border-bottom:1px solid #1c52a1; width:698px}
.product5 .product5_nei_title dl{ line-height:62px}
.product5 .product5_nei_title dl dd{ font-size:39px; color:#1a1a1a}
.product5 .product5_nei_title dl dt{ font-size:16px; color:#b3b3b3}
.product5 .nei_top_right{ padding-top:0px !important}
.product5 .product5_nei_body .nei_body_top ul li{ display:inline-block; background:url(../images/bn99.png) no-repeat 50% 50%; width:328px; height:53px; cursor:pointer; margin-top:25px; padding:5px 20px; color:#999; font-size:18px;}
.product5 .product5_nei_body .nei_body_top ul li a{ color:#999; font-size:18px;}
.product5 .product5_nei_body .nei_body_top ul li p:nth-child(2){ font-size:18px; font-weight:bolder}
.product5 .product5_nei_body .nei_body_top ul li:hover{ background:url(../images/bn100.png) no-repeat 50% 50%; color:#c1272d !important}
.product5 .product5_nei_body .nei_body_top ul li.bg{ background:url(../images/bn100.png) no-repeat 50% 50%; color:#c1272d !important}
.product5 .product5_nei_wen{ width:40%}
.product5 .product5_nei_wen .nei_wen_xun{ margin-top:30px}
.nei_wen_xun dl p{font-size: 15px;margin: 15px 0;background: #1c52a1;color: #fff;text-indent: 45px;width: 50%;height: 40px;line-height: 41px;}
.nei_wen_xun dl .p1{background:#1c52a1 url(../images/xsy.png) no-repeat 10px 5px;}
.nei_wen_xun dl .p2{background:#1c52a1 url(../images/jsy.png) no-repeat 10px 5px;}
.product5 .product5_nei_wen .nei_wen_xun dl dd{font-size: 30px;font-weight: 700;color: #000;margin-bottom: 10px;}
.product5 .product5_nei_wen .nei_wen_xun dl dt{font-size: 16px;color: #333;margin-bottom: 30px; line-height:24px}
.product5 .product5_nei_wen .nei_wen_xun a{display: block;width: 150px;color: #fff;font-size: 24px;text-align: center;background: #ccc;padding: 8px 0;transition: all 0.2s linear 0s;-webkit-transition: all 0.2s linear 0s; height:47px; overflow:hidden}
/*.product5 .product5_nei_wen .nei_wen_xun a:hover{ color:#000; background:#ccc;transition: all 0.2s linear 0s;-webkit-transition: all 0.2s linear 0s;}
*/

.icon{ width:100%; height:40px; background:url(../images/icon1.png) no-repeat 50% 50%;}
.index_body_er .index_body_si .index_body_si_body .si_body_xun:nth-child(2) .icon{background:url(../images/icon2.png) no-repeat 50% 50%;}
.index_body_er .index_body_si .index_body_si_body .si_body_xun:nth-child(3) .icon{background:url(../images/icon3.png) no-repeat 50% 50%;}
.index_body_er .index_body_si .index_body_si_body .si_body_xun:nth-child(4) .icon{background:url(../images/icon5.png) no-repeat 50% 50%;}

.hua{  position:absolute; left:-150px; width:150px; height:47px; top:0; background:#000; z-index:83;transition: all 0.2s linear 0s;}
.product5_nei_wen .nei_wen_xun a dd{ position:absolute; width:150px; height:47px; display:inline-block; text-align:center; line-height:47px; z-index:82; left:0; top:0;background:#1c52a1;}
.product5_nei_wen .nei_wen_xun a{ position:relative}
.product5_nei_wen .nei_wen_xun a span{ position:absolute; width:150px; height:47px; left:0px; top:0; z-index:852; line-height:47px}

.si_body_xun img,.product1 img{ width:100%}

.about_qi_body img{ width:100%;border: 1px solid #bebebe;border-bottom: none;}

.yqlj{width: 1200px;margin: 10px auto;}
.yqlj span{display: inline-block;font-size: 17px;color: #1c52a1;}
.yqlj a{display:inline-block;font-size: 15px;margin:0 5px;}
.yqlj a:hover{color:#1c52a1;}
.pages {
  width: 100%;
  text-align: center;
}
.pages a {
  padding: 2px 5px;
  border: 1px solid #198ede;
  color: #198ede;
  font-size: 12px;
  margin: 0 2px;
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
 *vertical-align: auto;
  zoom: 1;
 *display: inline;
}
.pages a:hover {
  background: #198ede;
  color: #fff;
}
.pages a.active {
  background: #198ede;
  color: #fff;
}
.pages .pagination {
  display: inline-block;
  position: relative;
  bottom: 0;
}
.pagination p {
  margin: 0;
  cursor: pointer
}
.pagination {
  height: 40px;
  padding: 30px 0px;
}
.pagination a {
  display: block;
  float: left;
  margin-right: 10px;
  padding: 0px 12px;
  height: 24px;
  border: 1px #cccccc solid;
  background: #fff;
  text-decoration: none;
  color: #808080;
  font-size: 12px;
  line-height: 24px;
}
.pagination a:hover {
  color: #1c52a1;
  background: white;
  border: 1px #1c52a1 solid;
}
.pagination a.cur {
  border: none;
  background: #1c52a1;
  color: #fff;
}
.pagination p {
  float: left;
  padding: 0px 12px;
  font-size: 12px;
  height: 24px;
  line-height: 24px;
  color: #bbb;
  border: 1px #ccc solid;
  background: #fcfcfc;
  margin-right: 8px;
}
.pagination p.pageRemark {
  border-style: none;
  background: none;
  margin-right: 0px;
  padding: 4px 0px;
  color: #666;
}
.pagination p.pageRemark b {
  color: red;
}
.pagination p.pageEllipsis {
  border-style: none;
  background: none;
  padding: 4px 0px;
  color: #808080;
}

.background_p {
        width: 100%;
        height: 100%;
        text-align: center;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99999999999;
        background: rgba(0, 0, 0, 0.50);
        display: none
      }
      
      .background_p .background_p_nei {
        display: inline-block;
        width: 100%;
        background: #fff;
        border-radius: 10px;
        max-width: 660px;
        padding: 47px 86px;
        position: relative;
      }
      
      .background_p .background_p_nei .q_nei_top {}
      
      .background_p .background_p_nei .q_nei_top .nei_top_body img {
        width: 100%
      }
      
      .background_p .background_p_nei .q_nei_top span {
        font-size: 22px;
        color: #666666;
      }
      
      .background_p .background_p_nei .q_nei_top .biaodan {
        width: 100%;
        border: 1px solid #bfbfbf;
        padding-left: 22px;
        margin-top: 18px;
        line-height: 42px;
      }
      
      .background_p .background_p_nei .q_nei_top .biaodan2 {
        width: 100%;
        border: 1px solid #bfbfbf;
        padding-left: 22px;
        margin-top: 18px;
        line-height: 46px
      }
      
      .background_p .background_p_nei .q_nei_top .tijiao {
        width: 100%;
        padding-left: 22px;
        margin-top: 18px;
        color: #FFFFFF;
        font-size: 18px;
        text-align: center;
        background: #e60012;
        cursor: pointer;
        line-height: 42px
      }
      
      .background_p .background_p_nei .nei_top_img {
        padding: 18px 20px;
        position: absolute;
        right: 0;
        cursor: pointer;
        top: 0px
      }

@media screen and (max-width:1440px){
#wrap{ display:none;}
.mo_top{ display:block;}
.disable_text_highlighting,body {
	/*去除选中高亮*/
-webkit-touch-callout: none;
-webkit-user-select: none;    /* Webkit */
-moz-user-select: none;      /* Firefox */
-ms-user-select: none;        /* IE 10  */
        /* Opera 目前不支持在Opera，但将很快 */
-o-user-select: none;
user-select: none;
}

      .side .sidebox span {
        padding-left: 10px;
      }
      
      .background_p {
        width: 100%;
        height: 100%;
        text-align: center;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99999999999;
        background: rgba(0, 0, 0, 0.50);
        display: none
      }
      
      .background_p .background_p_nei {
        display: inline-block;
        width: 100%;
        background: #fff;
        border-radius: 10px;
        max-width: 660px;
        padding: 47px 86px;
        position: relative;
      }
      
      .background_p .background_p_nei .q_nei_top {}
      
      .background_p .background_p_nei .q_nei_top .nei_top_body img {
        width: 100%
      }
      
      .background_p .background_p_nei .q_nei_top span {
        font-size: 22px;
        color: #666666;
      }
      
      .background_p .background_p_nei .q_nei_top .biaodan {
        width: 100%;
        border: 1px solid #bfbfbf;
        padding-left: 22px;
        margin-top: 18px;
        line-height: 42px;
      }
      
      .background_p .background_p_nei .q_nei_top .biaodan2 {
        width: 100%;
        border: 1px solid #bfbfbf;
        padding-left: 22px;
        margin-top: 18px;
        line-height: 46px
      }
      
      .background_p .background_p_nei .q_nei_top .tijiao {
        width: 100%;
        padding-left: 22px;
        margin-top: 18px;
        color: #FFFFFF;
        font-size: 18px;
        text-align: center;
        background: #e60012;
        cursor: pointer;
        line-height: 42px
      }
      
      .background_p .background_p_nei .nei_top_img {
        padding: 18px 20px;
        position: absolute;
        right: 0;
        cursor: pointer;
        top: 0px
      }

.m-message .mtit{
    display:block;
    width: 70px;
    height: 34px;
    line-height: 34px;
    color: #2F2F2F;
    float: left;
    font-weight: bold;
    text-align: right;
    margin-right: 30px;
}
.m-message label .inp{
    width: 72%;
    overflow: hidden;
    height: 32px;
    line-height: 32px;
    border: #cccccc 1px solid;
    border-radius: 3px;
    padding: 0 14px;
    box-sizing: border-box;
    color: #555;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.index_body_er .body_er_nei .er_nei_right{ margin-left:0px}
.product1 .product1_nei .product1_nei_top .nei_top_right{ padding-top: 0px;}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_title a{ margin-left: 23px;}
.index_body_ba .body_ba_nei a p:nth-child(1){ font-size: 18px;}

.top2 .top2_nei,.index_body_er .body_er_nei,.index_body_er .index_body_si,.index_body_san .index_body_san_nei,.index_body_qi .body_qi_nei,.index_body_ba .body_ba_nei,.index_body_six .body_six_nei,.product1 .product1_nei,.contact .contact_body,.news .news_body ul,.container,.product1_nei,.product1 .product1_neitwo{ max-width:1200px}
.top2 .top2_daohang{ padding-left:196px}
.index_body_er .body_er_nei .er_nei_left .nei_left_xun{ width:292px}
.index_body_er .body_er_nei .er_nei_right .nei_right_nei{ width:570px}
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_yi{ width:149px}
.index_body_san .index_body_san_nei .er_nei_body .nei_body_right{ width:645px}
.index_body_qi .body_qi_nei .qi_nei_body .nei_body_xun{ width:298px}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_body .xun_body_nei_xun{ margin-right:1px}
.abot_body .abot_body_xun{ margin-right:64px}
.honor .nei_center_body .honor_body_xun{ width:395px; margin-right:0px}
.honor .nei_center_body .honor_body_xun dd{ width:265px; height:353px; margin:0 auto}
#scroll{ max-width:1200px !important}
#scroll .item{ width:228px !important}
.num{ margin-right:26px}
.index_body_san .index_body_san_nei .er_nei_body .nei_body_right{ left: 558px; top:-17px}
.index_body_san .index_body_san_nei .er_nei_body{ height:100% !important}
.index_body_six .body_six_nei .six_nei_body .nei_body_xun{ width:241px}
.products-boss{ width:1200px !important}
.news .news_body ul li{ margin-right:20px}
.index_body_san .index_body_san_nei .er_nei_body .nei_body_left{    height: 337px; line-height:30px; font-size:16px; overflow:scroll}
.index_body_ba .body_ba_nei a{    margin-right: 20px;width: 285px;}
.bottom .bottom_nei{ width:1200px}

.bottom .bottom_nei .bottom_nei_left .nei_left_xun:nth-child(1){ width:13%}
.bottom .bottom_nei .bottom_nei_left .nei_left_xun:nth-child(2){ width:13%}
.bottom .bottom_nei .bottom_nei_left .nei_left_xun:nth-child(3){ width:13%}
.bottom .bottom_nei .bottom_nei_left .nei_left_xun:nth-child(4){ width:20%}
.bottom .bottom_nei .bottom_nei_left .nei_left_xun:nth-child(5){ width:27%}
.bottom .bottom_nei .bottom_nei_left .nei_left_xun{ margin-right: 25px;}

.starproduct .starproduct_nei_body .starproduct_body_xun{    width: 400px;}

.center_body_yi_nei{ width:1200px}
.center_body_yi .center_body_yi_nei:nth-child(1) dl:nth-child(1){ width:775px}
.center_body_yi .center_body_yi_nei:nth-child(1) div{ width:415px; overflow:hidden}
.center_body_yi .center_body_yi_nei:nth-child(1) div dl{ height:164px !important; width:415px !important; overflow:hidden}
.center_body_yi .center_body_yi_nei:nth-child(1) div dl:nth-child(2){ margin-top:4px}
.product1 .product1_nei .product1_nei_center .nei_center_body .center_body_yi .center_body_yi_nei div .title:nth-child(2){    margin-top: 9px;}

.product1 .product1_nei .product1_nei_center .nei_center_body .center_body_yi .center_body_yi_nei:nth-child(2) div{ width:49%}
.product1 .product1_nei .product1_nei_center .nei_center_body .center_body_yi .center_body_yi_nei:nth-child(2) div:nth-child(2) dl{ height:241px !important; overflow:hidden}


.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right .body_right_nei2{ padding-left:20px; overflow: hidden;}
.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right .body_right_nei2 img{ width: 100%}
.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right .nei_body_right_top{ margin-left:35px}



.product1 .product1_neitwo .product1_neitwo_title{ font-size:30px}

.product1 .product1_neitwo .product1_neitwo_body .neitwo_body_xun p:nth-child(1){ font-size:22px}
.product1 .product1_neitwo .product1_neitwo_body .neitwo_body_xun p:nth-child(2){ font-size:18px; line-height:28px; padding-bottom:15px}
.index_body_san .index_body_san_nei .er_nei_body .nei_body_left span{ font-size:16px}
.index_body_san .index_body_san_nei .er_nei_body .nei_body_left a{ font-size:16px}

.product5{ padding-bottom:180px}




#scroll .item{    background: url(../images/bn121.png) no-repeat 50% 75% !important;    height: 490px;}

.contact{ margin-top:25px !important; padding:0px !important}
.about_qi_body img{ width:100%}

#scroll .item .item_body{ margin-top:100px !important}



.product1 img{ width:100%}

.case .case_nei .case_nei_body .case_body .case_body_left{ padding:40px;}



}
@media screen and (max-width:768px){
	

}

@media screen and (max-width:414px){
	

}
@media screen and (max-width:375px){
	

}
@media screen and (max-width:320px){
	

}




.index_body_er .body_er_nei .er_nei_right .nei_right_nei .right_nei_bottom{ transition: all 0.3s ease 0s; font-weight:bolder;}
.index_body_er .body_er_nei .er_nei_right .nei_right_nei .right_nei_bottom:hover{ color:#1c52a1; background:#fff; transition: all 0.3s ease 0s;}
.bottom .bottom_nei .bottom_nei_left .nei_left_xun a{ transition: all 0.3s ease 0s;}
.bottom .bottom_nei .bottom_nei_left .nei_left_xun a:hover{ color:#fff; transition: all 0.3s ease 0s;}
.bottom .bottom_nei .bottom_nei_right a div:nth-child(2){ transition: all 0.3s ease 0s; font-weight:bolder;}
.bottom .bottom_nei .bottom_nei_right a div:nth-child(2):hover{ color:#fff; background:#1c52a1; transition: all 0.3s ease 0s; border:1px solid #1c52a1;}



.p_xj{display: block;width: 150px;color: #fff;font-size: 24px;text-align: center;background: #ccc;padding: 8px 0;transition: all 0.2s linear 0s;-webkit-transition: all 0.2s linear 0s; height:47px; overflow:hidden; position:relative; margin-top:25px;}
.p_xj span{ position:absolute; width:150px; height:47px; left:0px; top:0; z-index:852; line-height:47px}
.p_xj dd{
    position: absolute;
    width: 150px;
    height: 47px;
    display: inline-block;
    text-align: center;
    line-height: 47px;
    z-index: 82;
    left: 0;
    top: 0;
    background: #901e28;
}
.p_xj:hover .hua{ left:0px;transition: all 0.2s linear 0s;}



</pre></body></html>